home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_01_05 / 1n05048a < prev    next >
Text File  |  1990-09-10  |  183b  |  20 lines

  1.  
  2. enum etype {e1, e2, e3};
  3.  
  4. struct  stype
  5.     {
  6.     int a;
  7.     float b;
  8.     };
  9.  
  10. union utype
  11.     {
  12.     long l;
  13.     float f;
  14.     };
  15.  
  16. enum   etype evar;
  17. struct stype svar;
  18. union  utype uvar;
  19.  
  20.